home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / dsaniset / readme.txt < prev    next >
Encoding:
Text File  |  1999-05-02  |  3.3 KB  |  65 lines

  1. DS-Animated Cursor Controls 1.01 README
  2. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3.  
  4. This file is best viewed in Notepad (800x600 Display) and maximised.
  5.  
  6. Thankyou for using the Dave Software Animated Cursor Controls. Please ensure that you have
  7. read the following points below.
  8.  
  9. * THIS CONTROL IS COMPATIBLE WITH THE ANIMATED CURSOR CONTROLS VERSION 1.00
  10. * This program requires the Visual Basic 5.00 Service Pack 3 Runtimes. These can be found at
  11.   www.bigfoot.com/~davesoft/vb5sp3rt.zip. Download this file and then run the setup file included
  12.   If you do not have the Visual Basic runtimes then you must download this file and install it
  13.   before running the setup program for this control (this advice is for VB6 users)
  14. * This program displays an About box when you first use it. This is NOT displayed to users who
  15.   use your programs.
  16. * This program is freeware - it should not be sold to anyone, but distributed freely.
  17. * You may use this control in your programs completely free of charge. There is also no need
  18.   to include "About Box" credits for the component (although you can advertise for me if you
  19.   want!!)
  20.  
  21. Background
  22. ~~~~~~~~~~
  23.   This a "bug fixes" update to the original Animated Cursor Controls. The changes are:
  24. * Fixed a bug in the CursorName and Artist properties of the image control - occasionally the
  25.   last character would be clipped.
  26. * The Animation property and the AddCursor method of the controls have changed slightly. If you
  27.   want to supply the data for the cursor instead of a filename, simply prefix it with a ">"
  28.   e.g. object.Animation = "C:\WINDOWS\CURSORS\AppStart.ani" would load the file AppStart.ani,
  29.   This code snippet is an alternative...
  30.   Dim Buffer As String
  31.   Open "C:\WINDOWS\CURSORS\AppStart.ani" For Binary Access Read As #1
  32.   Let Buffer = Space(LOF(1))
  33.   Get #1, , Buffer
  34.   Close #1
  35.   object.Animation = ">" & Buffer
  36. * The Cursor control no longer requires the "Support Library" EXE. I have changed the mechanism
  37.   used for communication between the controls to one that does not require an ActiveX server.
  38.  
  39. Instructions
  40. ~~~~~~~~~~~~
  41. In order to install this software, simply run the Setup.exe program. A demo project is installed.
  42. I recommend that you look at this - it demonstrates a lot of the control. Also the Word Document,
  43. "DSAniSet Help.doc" contains all of the details about the control - if you do not have Microsoft 
  44. Word '97, then you can view the help file from the Animated Cursor Controls homepage,
  45. www.bigfoot.com/~davesoft/aniset.htm. If you are using the Version 1.00 controls, please
  46. uninstall them first.
  47.  
  48. And finally...
  49. ~~~~~~~~~~~~~~
  50.  
  51. If you would like to be added to the mailing list for updates to this and other programs
  52. available, please email davesoft@bigfoot.com and ask to be added to the "Software Update List".
  53.  
  54. Remember! Everyone who assists in reporting bugs or giving advice on a control will get their
  55. name/email address/web page placed on the About Box of the final version of the control. Also, 
  56. beta testers are entitled to free versions of any shareware products released (components that
  57. provide primary functionality for a program are shareware).
  58.  
  59. Check out our Website at www.bigfoot.com/~davesoft
  60.  
  61. This control is Copyright ⌐ David Allsopp, 1999.
  62.  
  63. Thankyou
  64.  
  65. Dave Software Enterprises. 1/5/1999.